From: Keir Fraser Date: Tue, 31 Mar 2009 10:49:56 +0000 (+0100) Subject: xend: Return True from device_update when cfg_xenapi X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13989^2~49 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=f02c18fff786578ae73581e8d329d2d2e91e7142;p=xen.git xend: Return True from device_update when cfg_xenapi When device_update is called by using cfg_xenapi, this patch returns True. Signed-off-by: Masaki Kanno --- diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index f7bc850f9e..e195ab1060 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -1912,6 +1912,7 @@ class XendConfig(dict): for key, val in cfg_xenapi.items(): dev_info[key] = val self['devices'][dev_uuid] = (dev_type, dev_info) + return True return False